home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / stack / stkchk_d0.c < prev    next >
C/C++ Source or Header  |  1995-05-23  |  231b  |  21 lines

  1. #include <bases.h>
  2.  
  3. asm("
  4.     .text
  5.     .even
  6.     .globl    ___stkchk_d0
  7.     .globl    ___stkchk_0
  8.  
  9. ___stkchk_d0:
  10.     negl    d0
  11.     addl    sp,d0
  12.     cmpl    "A4(___stk_limit)",d0
  13.     jcs    ___stkovf
  14.     rts
  15.  
  16. ___stkchk_0:
  17.     cmpl    "A4(___stk_limit)",sp
  18.     jcs    ___stkovf
  19.     rts
  20. ");
  21.